$strRev = Reverse ( <String> )
Parameters
<String> The string to be reversed.
Return Value
Returns the reversed string.
Remarks
- Reverse()
examines the string and reverses it.
Example
$str = "ABCDEF"
$strRev = Reverse($str)
$strRev now contains "FEDCBA".